home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Shareware Gold
/
Windows Shareware Gold Volume 3 Number 1 (Sherburne Knowledge Systems) (1991).iso
/
utils
/
f1476
/
resgauge.def
< prev
next >
Wrap
Text File
|
1991-06-04
|
977b
|
34 lines
; ===========================================================================
; resgauge.def -- module definition file for the Resource Gauge application.
; ===========================================================================
; module name
NAME ResGauge
; version control or copyright string
DESCRIPTION 'Resource Gauge v1.0 -- (c) 1991, Richard Franklin Albury'
; required for all Windows applications
EXETYPE WINDOWS
; generates an error message if the application is run without Windows
STUB 'WINSTUB.EXE'
; code can be moved in memory and discarded/reloaded
CODE PRELOAD MOVEABLE DISCARDABLE
; data must be MULTIPLE if program can be invoked more than once
DATA PRELOAD MOVEABLE SINGLE
; size in bytes of the application's local heap
HEAPSIZE 1024
; size in bytes of the application's stack
STACKSIZE 5120 ; recommended minimum for Windows is 5120
; ===================
; end of resgauge.def
; ===================